#text1 {
    display: flex;
    justify-content: center;
    width: 40%;
    margin: .4rem;
    color: chocolate;
}

#text2 {
    margin: 10px 10px;
    display: flex;
    color: red;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6em;
}

.copy-text button {
    padding: 10px;
    background: #5784f5;
    color: #fff;
    font-size: 18px;
    border-radius: 10px;
    border: none;
    outline: none;
    cursor: pointer;
}

.label {
    padding: 10px;
    font-size: 18px;
    color: #111;

}

.copy-text button:active {
    background: #889ce2;
}

.copy-text button::before {
    content: "Copy";
    position: absolute;
    background: darkcyan;
    border-radius: 20px;
    padding: 8px 10px;
    font-size: 14px;
    display: none;
}

.copy-text button::after {
    content: " ";
    position: absolute;
    background: darkkhaki;
    transform: rotate(45deg);
    height: 10px;
    display: none;
}

.copy-text.active button:before,
.copy-text.active button:after {
    display: block;
}

.copy-text input.text {
    padding: 16px;
    font-size: 18px;
    color: #555;
    border: none;
    outline: none;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 140px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -75px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

#navbar {
    background: #333;
    color: white;
    overflow: auto;
}

#navbar a {
    color: white;
    text-decoration: none;
}

#navbar h1 {
    float: left;
    font-family: Georgia, Times, 'Times New Roman', serif;
}

#navbar ul {
    list-style: none;
    float: right;
    font-size: auto;
    font-style: inherit;
}

#navbar ul li {
    float: left;
}

#navbar ul li a {
    display: block;
    padding: 20px;
    text-align: center;
}

#navbar ul li a:hover,
#navbar ul li a.current {
    background: #444;
    color: #f7c08a;
}

.container {
    margin: auto;
    max-width: 1100px;
    overflow: auto;
    padding: 10px 10px;
}

#mybutton {
    margin: 0 10px;
}

.Copyright {
    background: #434242;
    width: auto;
    text-align: center;
    padding: 5px;
    color: #f4f4f4;
}